home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Temp / MiscPickList / MiscPickListController.h < prev    next >
Text File  |  1995-04-12  |  957b  |  35 lines

  1. //
  2. //    MiscPickListController.h -- Controller object works with PickList
  3. //        Written by Don Yacktman Copyright (c) 1994 by Don Yacktman.
  4. //                Version 0.1.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. // This is used explicitly by GUI objects to implement the current
  15. // existing interface presented by the MiscPickList palette.
  16.  
  17. #import <misckit/misckit.h>
  18. #import "MiscPickList.h"
  19.  
  20. @interface MiscPickListController : Object
  21. {
  22.     id textPal;
  23.     MiscString *pickListName;
  24.     MiscPickList *pickList;
  25. }
  26.  
  27. - pickList;
  28. - bringUpPickList:sender;
  29. - textPal;
  30. - setTextPal:anObject;
  31. - (MiscString *)listName;
  32. - setListName:(MiscString *)aName;
  33.  
  34. @end
  35.